home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_08_07
/
8n07115a
< prev
next >
Wrap
Text File
|
1990-06-17
|
386b
|
18 lines
/* Listing 1 - Sample of Inheritance */
#define S1_CLASS int x; \
int y; \
int (*read_x)(); \
int (*read_y)();
typedef struct s1 {
S1_CLASS
} S1;
#define S2_CLASS S1_CLASS \
int z; \
int (*read_z)(); \
typedef struct s2 {
S2_CLASS
} S2;